home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / toolhelp.zip / TESTMAKE < prev    next >
Text File  |  1991-05-09  |  516b  |  29 lines

  1. #CFLAGS = -c -AS -Gsw -Oas -W2 -Zpe /G2
  2. #AFLAGS = /DmemS=1
  3. #LFLAGS = /ALIGN:16
  4.  
  5. CFLAGS = -c -AS -Gsw -Od -W2 -Zipe -DDEBUG /G2
  6. AFLAGS = /Zi /DmemS=1 /DDEBUG
  7. LFLAGS = /CO /ALIGN:16
  8.  
  9. test.exe: test.obj test2.obj test.def test.res toolhelp.lib
  10.     link $(LFLAGS) @<<
  11.         test test2
  12.         test.exe
  13.         test.map/map,
  14.         TOOLHELP.LIB SLIBCEW.LIB LIBW.LIB/NOE/NOD
  15.         test.def
  16. <<
  17.     rc -t test.res test.exe
  18.     mapsym test.map
  19.  
  20. .c.obj:
  21.     cl $(CFLAGS) $*.c
  22.  
  23. .asm.obj:
  24.     masm $(AFLAGS) $*.asm;
  25.  
  26. .rc.res:
  27.     rc -r $*.rc
  28.  
  29.